home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Programming / Complete Applications / 4D Programming / 4D Turbo / 4D External Template < prev    next >
Encoding:
Text File  |  1987-10-01  |  570 b   |  37 lines  |  [TEXT/ttxt]

  1. {This template is for use with Turbo Pascal}
  2.  
  3. program myprogram;
  4.  
  5. { change the name accordingly }
  6.  
  7. {$R-}
  8. {$U-}
  9. {$D 4DEX}
  10.  
  11. USES Memtypes;
  12.  
  13. {Inlude any other uses files that you need}
  14.  
  15. PROCEDURE myproc(paramPtr: XCmdPtr);
  16.  
  17. { this is the procedure that will be executed.}
  18.  
  19. {Be sure that all variables to be used are declared within this procedure.}
  20. {Declare within this procedure any Funtions or Procedures which you will call}
  21.  
  22.   Begin
  23.   
  24.   {insert your code here}
  25.   
  26.   End;
  27.  
  28.  
  29. {You need this begin and end statement so that Turbo will compile the code.}
  30.   
  31. Begin
  32. End.
  33.  
  34.  
  35.  
  36.  
  37.